type runtime.heapArena

9 uses

	runtime (current package)
		malloc.go#L559: 		const arenaMetaSize = (1 << arenaBits) * unsafe.Sizeof(heapArena{})
		malloc.go#L755: 			l2 = (*[1 << arenaL2Bits]*heapArena)(sysAllocOS(unsafe.Sizeof(*l2)))
		malloc.go#L770: 		var r *heapArena
		malloc.go#L771: 		r = (*heapArena)(h.heapArenaAlloc.alloc(unsafe.Sizeof(*r), goarch.PtrSize, &memstats.gcMiscSys))
		malloc.go#L773: 			r = (*heapArena)(persistentalloc(unsafe.Sizeof(*r), goarch.PtrSize, &memstats.gcMiscSys))
		malloc.go#L895: 		l2 := (*[1 << arenaL2Bits]*heapArena)(atomic.Loadp(unsafe.Pointer(&h.arenas[i])))
		mheap.go#L147: 	arenas [1 << arenaL1Bits]*[1 << arenaL2Bits]*heapArena
		mheap.go#L240: type heapArena struct {
		mheap.go#L730: func pageIndexOf(p uintptr) (arena *heapArena, pageIdx uintptr, pageMask uint8) {